body{
    background-color: #f7f7f7;
}

/* 内容 */
.Products-content{
    margin-top: 30px;
}

/* 左边内容 */
.content-left{
    
    float: left;
    width: 910px;
    background-color: #ffffff;
}
.content-left h2{
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}
.content-left span{
    display: inline-block;
    margin: 20px;
    font-size: 16px;
    line-height: 40px;
    display: block;
}
.content-left span ul{
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.content-left p{
    text-transform: uppercase;
}
.content-right{
    width: 280px;
    float: right;
}

/* 右边内容 */
.content-right>ul>li{
    padding-left: 10px;
    position: relative;
    text-align: left;
    line-height: 50px;
    font-size: 22px;
    font-weight: 500;
    height: 50px;
    background-color: #ffffff;
    margin-bottom: 1px;
    border-right: 3px solid #ffffff;
}


/* 僵硬展示 */
.content-right>ul>li:nth-child(1)::after{
    transform: rotate(90deg);
}
.content-right>ul>li:nth-child(1){
    border-right: 3px solid #29166f;
    color: #29166f;
}
.content-right>ul>li:nth-child(1) a{
    color: #29166f;
}
/* 僵硬展示 */


.content-right>ul>li::after{
    content: '';
    position: absolute;
    transition: 0.5s;
    top: 15px;
    right:10px;
    width: 12px;
    height: 20px;
    background-color: aqua;
    background: url(../images/direction2.png)no-repeat;
}
.content-right>ul>li:hover::after{
    background: url(../images/direction1.png);
    transform: rotate(90deg);
}
.content-right>ul>.selected:hover::after{
    background: url(../images/direction1.png);
    transform: rotate(90deg);
}
.content-right>ul>li:hover{
    border-right: 3px solid #29166f;
    
}
.content-right>ul>li:hover a{
    color: #29166f;
}
.content-right>ul>li:hover~ol{
    display: block;
}
.content-right ol{
    display: block;
}
.content-right ol li{
    background-color: #ffffff;
    margin-top: 1px;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    color: #9b9b9b;
    border-bottom: 1px solid #9b9b9b;
    width: 280px;
    height: 40px;
    font-weight: 500px;
}
.content-right ol li:hover{
    border-bottom: 1px solid #29166f;
}


/* 僵硬展示 */
.content-right ol li:nth-child(1){
    border-bottom: 1px solid #29166f;
}
.content-right ol li:nth-child(1) a{
    color: #29166f;
}
/* 僵硬展示 */

/* 脚 */
.footer{
    margin-top: 6px;
}


